home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer Power Tools
/
Programmer Power Tools.iso
/
pcresrc
/
pcr8808.arc
/
GET.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-02-17
|
289b
|
19 lines
echo off
if "%1"=="" goto nofind
if not exist %1 goto nofind
CLS
copy %1 nufile > nul
:loop
if "%2"=="" goto display
find "%2" nufile > temp
copy temp nufile > nul
shift
goto loop
:display
type nufile | more
type srt.lbl
goto end
:nofind
echo file "%1" not located
:end